home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / netprog.zip / NETPROG.TAR / lock / locknone.c < prev    next >
Text File  |  1989-12-17  |  114b  |  16 lines

  1. /*
  2.  * Locking routines that do nothing.
  3.  */
  4.  
  5. my_lock(fd)
  6. int    fd;
  7. {
  8.     return;
  9. }
  10.  
  11. my_unlock(fd)
  12. int    fd;
  13. {
  14.     return;
  15. }
  16.